:root{
  --blue:#021bfa;
  --gold:#dbb60e;
  --dark:#0a0a0a;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  font-family:'Raleway',sans-serif;
  line-height:1.6;
  color:#222;
}


/* ================= HERO ================= */

.service-hero{
  min-height:80vh;
  background:url("../images/about-us-images.jpg") center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  padding:0 60px;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.7);
}

.service-hero-content{
  position:relative;
  max-width:650px;
  color:#fff;
}

.service-hero h1{
  font-size:56px;
  margin-bottom:20px;
}

.service-hero p{
  font-size:19px;
  margin-bottom:30px;
  color:#ddd;
}

.service-btn{
  background:var(--gold);
  color:#000;
  text-decoration:none;
  padding:14px 30px;
  border-radius:30px;
  font-weight:700;
  display:inline-block;
}


/* ================= INTRO ================= */

.service-intro{
  padding:90px 60px;
}

.intro-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.intro-image img{
  width:100%;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.2);
}


/* ================= BENEFITS ================= */

.service-benefits{
  background:#f5f7ff;
  padding:90px 60px;
  text-align:center;
}

.benefits-container{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

.benefit-card{
  background:#fff;
  padding:35px 25px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.benefit-card i{
  font-size:32px;
  color:var(--gold);
  margin-bottom:15px;
}


/* ================= PROCESS ================= */

.service-process{
  padding:90px 60px;
  text-align:center;
}

.process-steps{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

.process-step{
  background:#fff;
  padding:35px 25px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
  position:relative;
}

.process-step span{
  position:absolute;
  top:-15px;
  left:-15px;
  width:40px;
  height:40px;
  background:var(--gold);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}


/* ================= FAQ ================= */

.service-faq{
  background:#f5f7ff;
  padding:90px 60px;
}

.faq-container{
  max-width:900px;
  margin:auto;
}

.faq-item{
  background:#fff;
  padding:25px;
  margin-bottom:20px;
  border-radius:14px;
  box-shadow:0 8px 22px rgba(0,0,0,.12);
}


/* ================= CONTACT ================= */

.service-contact{
  background:var(--blue);
  color:#fff;
  text-align:center;
  padding:90px 25px;
}


/* ================= FOOTER ================= */

.service-footer{
  background:url("../images/heroimage2.jpg") center/cover no-repeat;
  position:relative;
  color:#fff;
}

.footer-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.85);
}

.footer-content{
  position:relative;
  max-width:1200px;
  margin:auto;
  padding:70px 25px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.footer-brand img{
  width:140px;
  margin-bottom:15px;
}

.social-icons{
  display:flex;
  gap:15px;
}

.social-icons a{
  width:36px;
  height:36px;
  background:var(--gold);
  color:#000;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.footer-bottom{
  position:relative;
  text-align:center;
  padding:20px;
  border-top:1px solid rgba(255,255,255,.15);
  font-size:14px;
}

.syntax-brand{
  color: orange;
  font-weight: 600; /* optional */
}



/* ================= RESPONSIVE ================= */

@media(max-width:900px){

  .intro-container{
    grid-template-columns:1fr;
  }

  .footer-content{
    grid-template-columns:1fr;
    text-align:center;
  }

  .social-icons{
    justify-content:center;
  }

  .service-hero{
    padding:0 25px;
  }

  .service-hero h1{
    font-size:40px;
  }

}
